home *** CD-ROM | disk | FTP | other *** search
/ MacFormat 1995 June / MacFormat 25.iso / Shareware City / Developers / macgzip_03b2-src / macos / Posix / Posix Includes / utime.h < prev   
Encoding:
C/C++ Source or Header  |  1994-10-17  |  137 b   |  14 lines  |  [TEXT/KAHL]

  1. /* $Id: $ */
  2.  
  3. #pragma once
  4.  
  5. #include <time.h>
  6.  
  7. struct utimbuf {
  8.     time_t actime;
  9.     time_t modtime;
  10. };
  11.  
  12. int utime(char*, struct utimbuf*);
  13.  
  14.